/* Copyright Tvb Network (Pty) Ltd. All rights reserved 2025 */
/* Named instore_lander.css */
	:root {
		--green: #1a6b3a;
		--green-mid: #23883f;
		--green-light: #2ea84f;
		--green-pale: #e8f5ee;
		--red: #d63b2f;
		--red-light: #e95a4e;
		--cream: #faf8f4;
		--dark: #111a14;
		--dark2: #1e2d23;
		--mid: #4a5e52;
		--soft: #8a9e92;
		--border: #dde8e2;
		--white: #ffffff;
		--radius: 16px;
		--radius-sm: 8px;
		--primary: #1a6b3a;
	}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    background: #fff;
	padding:3%;
}


.content-container-x{
	border-radius:24px;
}


._main_cnt_lad_{
	width:100%;
	height:auto;
	padding:20px;
	padding-top:0px;
}

.container{
	margin-top:50px;
}


._top_lander_{
	text-align:left;
}

._top_lander_tit_{
	display:flex;
}

        h1, h2 {
            margin: 0 0 10px;
        }
        .stores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
            justify-content: center;
        }
        .store-card {
			width:250px;
			height:250px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            display: inline-block;
            flex-direction: column;
            align-items: center;
			position:relative;
        }
		
		._strShopBx_{
			position:absolute;
			width:100%;
			height:100%;
			opacity:0;
			transition:0.3s ease;
			top: 0px;
			left: 0px;
			text-align:center;
		}
		
		
		/* start shopping button */
		._strShop_{
			width:200px;
			padding:10px;
			border-radius:10px;
			background-color:green;
			color:#fff;
			text-align:center;
			cursor:pointer;
			position:absolute;
			bottom:-40px;
			font-size:10pt;
			display:inline-block;
			left:calc((100% - 200px) / 2);
		}
		
		.store-card:hover ._strShopBx_{
			opacity:1;
		}
		
		/* arrow forward */
		._arwforward_{
			width:25px;
			height:25px;
			filter:invert(1);
			display:inline-block;
		}
		
        .store-name {
            font-weight: bold;
            margin: 10px;
			margin-bottom:5px;
			margin-top:0px;
			font-weight: 700; 
			font-size: 1.1rem;

        }
        .store-type {
            color: #666;
            font-size: 0.9em;
        }
		
		
		.store-card {
            background: white;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        .store-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(76,175,80,0.15); }
        .store-card i { font-size: 3rem; color: var(--green); margin-bottom: 15px; }
        
        .btn {
            display: inline-block;
            background: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #45a049;
        }
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
            justify-content: center;
        }
        .feature {
            text-align: center;
        }
        
		
		
		
		
		
		
		
.store-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.store-type-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease;
	position:relative;
}


._igtype_stv_{
	padding: -20px;
	height:320px;
	width:100%;
	object-fit:cover;
	margin:1px;
	margin-bottom:100px;
	border-radius: 22px 22px 0 0;
}


/* box contening information */
._bx1_inf_{
	 padding: 20px;
	 padding-top:10px;
	 padding-bottom:10px;
	 position:absolute;
	 left:0px;
	 bottom:0px;
	 background-color:inherit;
}

.store-type-card:hover {
    transform: translateY(-8px);
}

.store-type-slider {
    width: 100%;
    height: 100px; /* Adjust based on your image size */
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.store-type-slide-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 20px;
}

.store-type-slider {
    display: flex;
    animation: slide 20s linear infinite paused;
}

.store-type-card:hover .store-type-slider {
    animation-play-state: running;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.store-name-ontype {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.store-type-card p {
    color: #666;
    margin: 8px 0;
	 font-size: 0.9em;
}
		
		
		
		
		
		
		
		
		
		
		
		
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0;
            justify-content: center;
        }
        
        
		
		.feature i, .step i { font-size: 4rem; color: var(--green); margin-bottom: 20px; }
		.step-number {
			background: var(--primary);
			color: white;
			width: 80px; height: 80px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 2.5rem;
			font-weight: 800;
			margin: 0 auto 30px;
			box-shadow: 0 10px 30px rgba(76,175,80,0.4);
		}

		
		
		
		
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
            justify-content: center;
        }
		
        .testimonial {
            background: #e5e7eb;
            padding: 20px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
			min-height:300px;
            align-items: left;
        }
		
		._fstar_{
			height:40px;
			width: fit-content;
		}
		
		._hdcnt_avname_{
			width:100%;
			display:flex;
			align-content:left;
		}
		
		._cnt_name_{
			margin-left:20px;
			text-align:left;
		}
		
		._txt_tesl_{
			text-align:left;
			
		}
		._txt_tesr_{
			font-size:10pt;
		}
        .customer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-top: 10px;
        }
        .customer-name {
            font-weight: bold;
            margin-top: 10px;
        }
        .cta {
			background-color:#f1f1f1;
            color: #333;
            padding: 50px 0;
        }
        .cta .btn {
            background: white;
            color: #4CAF50;
            font-weight: bold;
            margin: 0 5px;
        }
      
        img.store-img {
            width: 120px;
			height: 120px;
            border-radius: 2px;
            object-fit: cover;
            margin-bottom: 10px;
        }
        .store-type-img {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 10px;
        }
		
	
	
	
	
	
	
	
	
	/*-------Here we're working with the app download--------*/
	.app-download{
        background: #4CAF50;
		color:#fff;
		display:flex;
		padding:100px;
	}
	
	
	._app_sc1_{
		width:50%;
		height:100%;
		text-align:left;
	}
	
	
	._app_sc2_{
		width:50%;
		height:100%;
	}
	
	
    .app-buttons {
        display: flex;
        justify-content: left;
        gap: 20px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
	
	
	
	
	/* Here we create a button get it */
	._btn_getit_{
		display: flex;
		background-color: #000;
        color: white;
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 10px;
        margin: 10px 0;
        border: none;
        cursor: pointer;
	}
	
	
	
	
	
	._subTiapp_{
		font-size: 0.75rem;
		line-height: 1rem;
	}
	
	
	._supTiapp_{
		font-size: 1.125rem;
		line-height: 1.75rem;
		font-weight: 600;
	}
	
	
	
	
	._exp_stn_{
		background: var(--green);
		color: white;
		display: inline-block;
		padding: 18px 40px;
		font-size: 1.3rem;
		font-weight: 700;
		border-radius: 50px;
		text-decoration: none;
		margin: 0 10px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
		transition: all 0.3s;
		border:0px;
	}
	
	
	
	
	
	.feature {
		padding: 2.5rem;
		text-align: center;
		border-radius: 1.5rem;
		background-color:#f1f1f1;
	}
	.feature i {
		font-size: 4rem;
		color: var(--green);
		margin-bottom: 20px;
	}
	.feature h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--primary-dark); }
	.feature p { font-size: 0.9rem; }
	
	
	
	._appDwn_{
		margin-top:auto;
		margin-bottom:auto;
		margin-right:16px;
		width:32px;
		height:32px;
		transition:0.3s ease;
	}
	
	
	._btn_getit_:hover ._appDwn_{
		width:38px;
		height:38px;
	} 
	
	
	
._prs_inst_{
	height:280px;
}
	